home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 7 / Apprentice-Release7.iso / Source Code / C / Applications / Python 1.4 / stdwin / Tools / dirent.h < prev    next >
Encoding:
C/C++ Source or Header  |  1995-12-21  |  210 b   |  10 lines  |  [TEXT/CWIE]

  1. /* A hack to compensate the absence of <dirent.h> on BSD systems.
  2.    Remove this file if it bothers you. */
  3.  
  4. #ifdef SYSV
  5. #include "/usr/include/dirent.h"
  6. #else
  7. #include <sys/dir.h>
  8. #define dirent direct
  9. #endif
  10.